home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2001 December / pcwk12201b.iso / Wersje pelne i specjalne / Winamp 2.77 i 3.0beta / wasabi-sdk_beta1.exe / jnetlib / jnetlib.h < prev    next >
C/C++ Source or Header  |  2001-10-08  |  3KB  |  89 lines

  1. /*
  2.  
  3.   Nullsoft WASABI Source File License
  4.  
  5.   Copyright 1999-2001 Nullsoft, Inc.
  6.  
  7.     This software is provided 'as-is', without any express or implied
  8.     warranty.  In no event will the authors be held liable for any damages
  9.     arising from the use of this software.
  10.  
  11.     Permission is granted to anyone to use this software for any purpose,
  12.     including commercial applications, and to alter it and redistribute it
  13.     freely, subject to the following restrictions:
  14.  
  15.     1. The origin of this software must not be misrepresented; you must not
  16.        claim that you wrote the original software. If you use this software
  17.        in a product, an acknowledgment in the product documentation would be
  18.        appreciated but is not required.
  19.     2. Altered source versions must be plainly marked as such, and must not be
  20.        misrepresented as being the original software.
  21.     3. This notice may not be removed or altered from any source distribution.
  22.  
  23.  
  24.   Brennan Underwood
  25.   brennan@nullsoft.com
  26.  
  27. */
  28.  
  29. /*
  30. ** JNetLib
  31. ** Copyright (C) 2000-2001 Nullsoft, Inc.
  32. ** Author: Justin Frankel
  33. ** File: jnetlib.h - JNL main include file (not really necessary).
  34. **
  35. ** For documentation, look at the following files:
  36. **  Generic network initialization: netinc.h
  37. **  DNS: asyncdns.h
  38. **  TCP connections: connection.h
  39. **  HTTP GET connections: httpget.h
  40. **  TCP listen: listen.h
  41. **
  42. **  license: 
  43. **
  44. **  Redistribution and use in source and binary forms, with or without
  45. **  modification, are permitted provided that the following conditions
  46. **  are met:
  47. **
  48. **  1. Redistributions of source code must retain the above copyright
  49. **     notice, this list of conditions and the following disclaimer.
  50. **
  51. **  2. The origin of this software must not be misrepresented; you must 
  52. **     not claim that you wrote the original software.  If you use this 
  53. **     software in a product, an acknowledgment in the product 
  54. **     documentation would be appreciated but is not required.
  55. **
  56. **  3. Altered source versions must be plainly marked as such, and must
  57. **     not be misrepresented as being the original software.
  58. **
  59. **  4. The name of the author may not be used to endorse or promote 
  60. **     products derived from this software without specific prior written 
  61. **     permission.
  62. **
  63. **  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  64. **  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  65. **  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  66. **  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  67. **  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  68. **  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  69. **  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  70. **  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  71. **  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  72. **  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  73. **  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  74. */
  75.  
  76. #ifndef _JNETLIB_H_
  77. #define _JNETLIB_H_
  78.  
  79. #include "netinc.h"
  80. #include "util.h"
  81.  
  82. #include "asyncdns.h"
  83. #include "connection.h"
  84. #include "httpget.h"
  85. #include "httpserv.h"
  86. #include "listen.h"
  87.  
  88. #endif//_JNETLIB_H_
  89.